home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / tasksel / tests / new-install < prev    next >
Text File  |  2009-10-22  |  607b  |  35 lines

  1. #!/bin/sh
  2. #
  3. # Controls behavior for a task on new install or not. 
  4. #
  5. # To enable this test insert your tasks stanza a keyword like:
  6. #
  7. # Test-new-install: mark skip
  8. #
  9. # This will cause the task to be marked for install on new install, and
  10. # hidden otherwise.
  11.  
  12. if [ "$NEW_INSTALL" ]; then
  13.     var=$2
  14. else
  15.     var=$3
  16. fi
  17.  
  18. case "$var" in
  19.     install)
  20.         exit 0 # do not display, but do install task
  21.     ;;
  22.     skip)
  23.         exit 1 # do not display task
  24.     ;;
  25.     mark)
  26.         exit 2 # display task, marked for installation
  27.     ;;
  28.     show)
  29.         exit 3 # display task, not marked for installation
  30.     ;;
  31.     *)
  32.         exit 1 # unknown value, skip the task
  33.     ;;
  34. esac
  35.